home *** CD-ROM | disk | FTP | other *** search
- #
- # Statewatcher Script fuer Basaltface
- #
- # created: 28-Mar-01 floh created
- #
-
- #-------------------------------------------------------------------------------
- proc basalt_watch_normal {} {
- # nur dummy damit man ueberhaupt Objekt erzeugen kann
- }
-
- #-------------------------------------------------------------------------------
-
- # Text01: Basaltface materialisiert
- proc basalt_watch_text01_erschein {} {
- if {[.isanimfinished] == "true"} {
- .announcestate text01_normal
- }
- }
-
- # Text01: Basaltface redet und hampelt mit den Haenden
- proc basalt_watch_text01_normal {} {
- if {[.isanimfinished] == "true"} {
- .announcestate text01_zeig
- }
- }
-
- # Text01: Basaltface zeigt irgendwo hin
- proc basalt_watch_text01_zeig {} {
- if {[.isanimfinished] == "true"} {
- .announcestate weg
- }
- }
-
- #-------------------------------------------------------------------------------
-
- # Text02: Basaltface materialisiert
- proc basalt_watch_text02_erschein {} {
- if {[.isanimfinished] == "true"} {
- .announcestate text02_normal
- }
- }
-
- # Text02: Basaltface redet und hampelt mit den Haenden
- proc basalt_watch_text02_normal {} {
- if {[.isanimfinished] == "true"} {
- .announcestate text02_zeig
- }
- }
-
- # Text02: Basaltface zeigt irgendwo hin
- proc basalt_watch_text02_zeig {} {
- if {[.isanimfinished] == "true"} {
- .announcestate weg
- }
- }
-
- #-------------------------------------------------------------------------------
-
- # Text03: Basaltface materialisiert
- proc basalt_watch_text03_erschein {} {
- if {[.isanimfinished] == "true"} {
- .announcestate text03_normal
- }
- }
-
- # Text03: Basaltface redet und hampelt mit den Haenden
- proc basalt_watch_text03_normal {} {
- if {[.isanimfinished] == "true"} {
- .announcestate text03_zeig
- }
- }
-
- # Text03: Basaltface zeigt irgendwo hin
- proc basalt_watch_text03_zeig {} {
- if {[.isanimfinished] == "true"} {
- .announcestate weg
- }
- }
-
- #-------------------------------------------------------------------------------
-
- # Basaltface verschwindet
- proc basalt_watch_weg {} {
- if {[.isanimfinished] == "true"} {
- .announcestate invis
- }
- }
-
- # Basaltface ist unsichtbar
- proc basalt_watch_invis {} {
- # FLOH: removed obsolete putevent stuff
- }
-
- #-------------------------------------------------------------------------------
-
-
-
-
-